home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / Developer University / DUProjects / Talker / Sources / Talker.hpp < prev   
Encoding:
Text File  |  1996-08-16  |  1.3 KB  |  76 lines  |  [TEXT/CWIE]

  1. //========================================================================================
  2. //    Release Version:    $ ODF 1 $
  3. //    Copyright:            (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  4. //========================================================================================
  5.  
  6. #ifndef TALKER_HPP
  7. #define TALKER_HPP
  8.  
  9. #if !defined(FW_BUILD_MAC)
  10.  
  11. // ----- Foundation Includes -----
  12.  
  13. #include "FWCommon.h"
  14. #include "FWTaskG.h"
  15. #include "FWDebug.h"
  16. #include "FWExcLib.h"
  17. #include "FWCollec.h"
  18. #include "FWFoundU.h"
  19. #include "FWMemory.h"
  20. #include "FWNotifn.h"
  21. #include "FWRunTyp.h"
  22. #include "FWStream.h"
  23. #include "FWString.h"
  24.  
  25. // ----- OS Includes -----
  26.  
  27. #ifndef FWPOINT_H
  28. #include "FWPoint.h"
  29. #endif
  30.  
  31. #ifndef FWRECT_H
  32. #include "FWRect.h"
  33. #endif
  34.  
  35. #ifndef FWODGEOM_H
  36. #include "FWODGeom.h"
  37. #endif
  38.  
  39. // ----- OpenDoc Includes -----
  40.  
  41. #ifndef FWODTYPS_H
  42. #include "FWODTyps.h"
  43. #endif
  44.  
  45. #ifndef SOM_ODDragAndDrop_xh
  46. #include <DragDrp.xh>
  47. #endif
  48.  
  49. #ifndef SOM_Module_OpenDoc_StdProps_defined
  50. #include <StdProps.xh>
  51. #endif
  52.  
  53. #ifndef SOM_Module_OpenDoc_StdTypes_defined
  54. #include <StdTypes.xh>
  55. #endif
  56.  
  57. #ifndef SOM_ODStorageUnit_xh
  58. #include <StorageU.xh>
  59. #endif
  60.  
  61. #ifndef SOM_ODShape_xh
  62. #include <Shape.xh>
  63. #endif
  64.  
  65. #ifndef SOM_ODTransform_xh
  66. #include <Trnsform.xh>
  67. #endif
  68.  
  69. #ifndef SOM_ODSession_xh
  70. #include <ODSessn.xh>
  71. #endif
  72.  
  73. #endif
  74.  
  75. #endif // TALKER_HPP
  76.